home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga Plus 2000 #5
/
Amiga Plus CD - 2000 - No. 5.iso
/
Tools
/
Grafik
/
Paint
/
ArtEffect4
/
Rexx
/
plot.rexx
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
OS/2 REXX Batch file
|
1998-05-18
|
267 b
|
19 lines
/**/
address "ArtEffect"
options results
createbrush rec size 1 prop 100 angle 0
new w 128 h 128
do y = 0 to 127 by 2
do x = 0 to 127 by 2
r = trunc( x*255/127 )
g = trunc( y*255/127 )
b = x+y
setcolor r g b
plot x y pt pen mode color str 100
end
end